home *** CD-ROM | disk | FTP | other *** search
/ Software 2000 / Software 2000 Volume 1 (Disc 1 of 2).iso / utilities / u267.dms / u267.adf / INC9110B.LZH / include / alloca.h next >
C/C++ Source or Header  |  1991-05-22  |  324b  |  23 lines

  1. /*
  2.  * alloca.h - Declarations for alloca()
  3.  * Simon Wright (sjwright@cix) 22.5.91, for PDC/GCC/Amiga
  4.  */
  5.  
  6. #ifndef __ALLOCA_H__
  7. #define __ALLOCA_H__
  8.  
  9. #ifndef __STDDEF_H__
  10. #include <stddef.h>
  11. #endif
  12.  
  13. #ifdef __GNUC__
  14. #define alloca __builtin_alloca
  15. #else
  16. void         *alloca(size_t size);
  17. #endif
  18.  
  19. #endif /* __ALLOCA_H__ */
  20.  
  21.  
  22.  
  23.